02. Deep Q-Networks

Deep Q-Networks

In the video below, Arpan will tell you all about how DeepMind leveraged a Deep Q-Network (DQN) to build the Deep Q-Learning algorithm that learned to play many Atari video games better than humans.

Deep Q-Networks

## Quiz

Select all that are true.

SOLUTION:
  • In order to capture temporal information, a stack of 4 preprocessed frames are used as the state that is passed to the DQN.
  • The DQN takes the state as input, and returns the corresponding predicted action values for each possible game action.
  • The DQN architecture is composed of a couple of convolutional layers, followed by a couple of fully connected layers.
  • For each Atari game, the DQN was trained from scratch on that game.